The Syriac Meltho fonts were converted to be used for Web pages by Marek Marciniak in July 2021.

In each folder where fonts are there are two files: 
	style.css 
	start.html 
Both are showing how to set up a page to use the font. Each folder is set up to use only the font it relates to.

Basically You need to define @font-face and a style in style.css - as example:

@font-face {
	font-family: 'AntochBible';
	src: url('fonts/AntochBible.eot');
	src: url('fonts/AntochBible.woff') format('woff'), url('fonts/AntochBible.ttf') format('truetype'), url('fonts/AntochBible.svg') format('svg');
}

.fontStye {
       font-family: 'AntochBible';
 }

 <div class="fontStye">
        ... and You write here with the Syriac keyboard and will be displayed with Antoch Bible font
 </div>